home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
UnrealScript Game Programming All in One
/
UnrealScriptGameProgrammingAllInOne.iso
/
UGPAIOListings
/
UGPAIOListingsCh05
/
HelloWorld
/
Classes
/
HelloWorld (1).uc
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-01-08
|
217 b
|
16 lines
%PARAMETERS = "HelloWorld C:UT2004"
class HelloWorld extends Commandlet;
function int Main(string Args)
{
log("*************");
log("Hello World!");
log("*************");
return 0;
}